home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / MEDICAL / 2575A.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1991-04-11  |  882b  |  41 lines

  1. echo off
  2. cls
  3. if %1x==x goto NODRIVE
  4. if %2x==x goto NODRIVE
  5. echo All disk drive designations must end with colons. For instance, drive C
  6. echo is designated as "C:", not "C".
  7. echo.
  8. echo If the drive you want files to be copied to is not "%1", then press
  9. echo Control-C to abort; otherwise,
  10. pause
  11. %1
  12. cd\
  13. if exist %1\drsoft goto SKIP
  14. md drsoft
  15. :SKIP
  16. cd\drsoft
  17. copy %2pkunzip.exe %1
  18. pkunzip %2drs7.zip
  19. copy %2install.bat %1
  20. copy %2t.com %1
  21. copy %2readme.too %1
  22. copy %2read.me
  23. echo Remove Disk 1 and insert Disk 2 in floppy drive
  24. Pause
  25. pkunzip %2drs?.zip
  26. echo Remove Disk 2 and insert Disk 3 in floppy drive
  27. Pause
  28. pkunzip %2drs?.zip
  29. cls
  30. echo to run DrSoft type DRS at the DOS prompt
  31. Pause
  32. goto END
  33. :NODRIVE
  34. cls
  35. echo The correct syntax to install DRSOFT is
  36. echo -
  37. echo A:INSTALL C: A:
  38. echo -
  39. echo This will install DRSOFT on the C: drive.
  40. exit
  41. :END